From: Dave Love Date: Thu, 14 Nov 2002 14:18:05 +0000 (+0000) Subject: (tparam): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~54544 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f76b7d78b64c9200476d8d3116385fc67aedd7ea;p=emacs.git (tparam): Declare all args (per C99). --- diff --git a/src/terminfo.c b/src/terminfo.c index 17ce16dabd6..8b41de4e47e 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -38,7 +38,7 @@ char * tparam (string, outstring, len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) char *string; char *outstring; - int arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9; + int len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9; { char *temp; extern char *tparm();